Roc Toolkit internal modules
Roc Toolkit: real-time audio streaming
Loading...
Searching...
No Matches
poison_reader.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019 Roc authors
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 */
8
9//! @file roc_audio/poison_reader.h
10//! @brief Poison reader.
11
12#ifndef ROC_AUDIO_POISON_READER_H_
13#define ROC_AUDIO_POISON_READER_H_
14
15#include "roc_audio/frame.h"
16#include "roc_audio/ireader.h"
18
19namespace roc {
20namespace audio {
21
22//! Poisons audio frames before reading them.
23class PoisonReader : public IReader, public core::NonCopyable<> {
24public:
25 //! Initialize.
27
28 //! Read audio frame.
29 virtual void read(Frame&);
30
31private:
32 IReader& reader_;
33};
34
35} // namespace audio
36} // namespace roc
37
38#endif // ROC_AUDIO_POISON_READER_H_
Audio frame.
Definition: frame.h:22
Audio reader interface.
Definition: ireader.h:22
Poisons audio frames before reading them.
Definition: poison_reader.h:23
virtual void read(Frame &)
Read audio frame.
PoisonReader(IReader &reader)
Initialize.
Base class for non-copyable objects.
Definition: noncopyable.h:23
Audio frame.
Root namespace.
Non-copyable object.
Audio reader interface.